Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

102
Views
WebRTC - Screen recording | Audio not recording - issue

I'm attempting to create a simple WebRTC with audio and video screen recording; the video appears to be fine, but the audio is missing from the file, rest of the others functionalities working absolutely fine. Did anyone face the same issue? any solution?

function startRecording1(stream) {
        mediaRecorder = new MediaRecorder(stream, {
            mimeType: 'video/webm;codecs=vp9',
            audio: true,
            video: true
        });

        mediaRecorder.start(1000);
        toggleRecordingIcons(true);

        mediaRecorder.ondataavailable = function (e) {
            recordedStream.push(e.data);
        };

        mediaRecorder.onstop = function () {
            toggleRecordingIcons(false);
            //h.saveRecordedStream(recordedStream, username);
            uploadInS3Bucket(recordedStream);
            
        };

        mediaRecorder.onerror = function (e) {
            console.error(e);
        };
    }

// Call this function here

     getUserFullMedia().then((videoStream) => {
                        startRecording1(videoStream);
                    }).catch(() => { });



     getUserFullMedia() {
    
            if (this.userMediaAvailable()) {
    
                return navigator.mediaDevices.getUserMedia({
                    video: true,
                    audio: {
                        echoCancellation: true,
                        noiseSuppression: true
                    },
                    audio: true
                });
            }
    
            else {
                throw new Error('User media not available');
            }
}
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!